home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 1 / PC Actual CD 01.iso / share / dos / graficos / plydat14.arj / MAKEALL.BAT < prev    next >
Encoding:
DOS Batch File  |  1992-04-06  |  863 b   |  34 lines

  1. rem
  2. rem Batch file to process all of the Polyray data files.
  3. rem 
  4. rem On my machine (20 Mhz 286/ 10 Mhz FPU), processing all
  5. rem data files takes around 2 days.  If you want a quick look
  6. rem then move to a subdirectory and look for an appropriate
  7. rem test image to render.
  8. rem
  9. rem In a couple of cases, a C compiler is necessary to generate data,
  10. rem in particular for the height field and SPD examples.  The batch files
  11. rem are currently set to use the Zortech compiler, however a simple change
  12. rem of the command line should be all you need for another compiler.
  13. rem
  14. cd simple
  15. call makesimp
  16. cd ..\blobs
  17. call makeblob
  18. cd ..\height
  19. call makeheig
  20. cd ..\misc
  21. call makemisc
  22. cd ..\texture
  23. call maketext
  24. cd ..\sweep
  25. call makeswep
  26. cd ..\poly
  27. call makepoly
  28. cd ..\spd
  29. call makespd
  30. cd ..\function
  31. call makefunc
  32. cd ..\animate
  33. call makeanim
  34.